home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / e_to_l / fbuilder / delphi / demos / maindemo.dpr < prev    next >
Text File  |  1996-09-15  |  1KB  |  39 lines

  1. {*                                         *}
  2. {* FormulaBuilder 1.0                      *}
  3. {* YGB Software, Inc.                      *}
  4. {* Copyright (c) 1995 Clayton Collie       *}
  5. {* All Rights Reserved                     *}
  6. {*                                         *}
  7. {* MAINDEMO.DPR                            *}
  8. {*                                         *}
  9. {* This project exercises all the major    *}
  10. {* features of FormulaBuilder              *}
  11. {*                                         *}
  12. {* NOTE - This demo requires that the      *}
  13. {* machine running it has the              *}
  14. {* \DELPHI\DEMOS\DATA subdirectory, and    *}
  15. {* a copy of ChartFX 2.0 must be installed *}
  16. {* in the Component Palette. Both          *}
  17. {* requirements are fulfilled by the       *}
  18. {* standard Delphi installation            *}
  19. {*                                         *}
  20. program Maindemo;
  21. {$M 40000,8192}
  22. uses
  23.   Forms,
  24.   MainForm in 'MAINFORM.PAS' {MainDemoFm},
  25.   Funcdlg in 'FUNCDLG.PAS' {FunctionDlg},
  26.   Dbexprfm in 'DBEXPRFM.PAS' {DBExprBuilder},
  27.   Fbhelpfm in 'FBHELPFM.PAS' {HelpDialog},
  28.   Demabout in 'DEMABOUT.PAS' {AboutBox},
  29.   Rttifm in 'RTTIFM.PAS' {RTTIDemoForm},
  30.   extfunc in 'EXTFUNC.PAS';
  31.  
  32. {$R *.RES}
  33.  
  34.  
  35. begin
  36.   Application.CreateForm(TMainDemoFm, MainDemoFm);
  37.   Application.Run;
  38. end.
  39.